home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / NEWSOFT / AUGUST / ARCWEB / ReadMeDocs / ChgFSI_Fix < prev    next >
Text File  |  1995-10-05  |  1KB  |  46 lines

  1. Fix for ChangeFSI
  2. =================
  3.  
  4. I finally got fed up with "GIF file without , in right place" errors
  5. from ChangeFSI (0.95, 1.01 & 1.13S all exhibit this annoying message).
  6. I have devised a simple fix for it.
  7.  
  8. This mainly affects web browsers which are downloading all manner of
  9. GIF format files from other web sites created with a variety of
  10. packages, although anything reading GIF with ChangeFSI might be
  11. affected.
  12.  
  13. -----8<----- instructions start here ------>8-------
  14.  
  15. Find the place in !ChangeFSI.ChangeFSI which has the following
  16. code: (search for "GIF file without")
  17.  
  18. ChangeFSI 0.95 or ChangeFSI 1.01:
  19. I%=BGET#c%:IFI%<>ASC"," ERROR 42,"GIF file without , in right place"
  20.  
  21. ChangeFSI 1.13S:
  22. I%=BGET#c%:IF I%=ASC"!" THEN
  23. IF BGET#c%
  24. GIFgcssz=BGET#c%:PTR#c%=PTR#c%+GIFgcesz+1:I%=BGET#c%
  25. ENDIF
  26.  
  27.  
  28. For ChangeFSI 0.95 and 1.01:
  29.    remove the "I%=BGET#c%:" part of the line and add the following code
  30.    BEFORE that line.
  31.  
  32. For ChangeFSI 1.13S:
  33.    remove all the lines listed above and replace then with the following
  34.    code.
  35.  
  36. REPEAT:I%=BGET#c%:IFI%=ASC"!"THEN
  37. IFBGET#c%:REPEAT:GIFgcesz=BGET#c%:PTR#c%=PTR#c%+GIFgcesz:UNTIL GIFgcesz=0
  38. ENDIF:UNTIL I%<>ASC"!"
  39.  
  40. -- 
  41. Stewart Brodie
  42. Dept. Electronics & Computer Science, Southampton University, UK.
  43. http://www.dsse.ecs.soton.ac.uk/~snb94r/
  44. http://delenn.ecs.soton.ac.uk/   <-- running on my Risc PC
  45.  
  46.